Find org

Find an organization by id

Request
path Parameters
orgId
required
string
Responses
200

Ok

get/orgs/{orgId}
Request samples

org = dl.organizations.get(organization_id='organization_id')

# 
# Get Organization object to be able to use it in your code.
# 
# **Prerequisites**: You must be a **superuser** to use this method.
# 
# You must provide at least ONE of the following params: organization_name or organization_id.
# 
# :param str organization_id: optional - search by id
# :param str organization_name: optional - search by name
# :param fetch: optional - fetch entity from platform, default taken from cookie
# :return: Organization object
# :rtype: dtlpy.entities.organization.Organization
# 
# 
Response samples
application/json
{
  • "id": "string",
  • "url": "string",
  • "createdAt": 0,
  • "updatedAt": 0,
  • "role": "string",
  • "name": "string",
  • "logoUrl": "string",
  • "members": [
    ],
  • "groups": [
    ],
  • "owner": {
    },
  • "account": {
    },
  • "creator": {
    },
  • "plan": "freemium",
  • "integrations": [
    ],
  • "industry": "string",
  • "size": "string"
}